home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / nameless.swf / scripts / DefineButton2_1870 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2011-06-09  |  352 b   |  22 lines

  1. on(release){
  2.    if(_root.level != 2)
  3.    {
  4.       if(_root.q == "BEST" or _root.q == "HIGH")
  5.       {
  6.          _root.q = "LOW";
  7.       }
  8.       else if(_root.q == "LOW")
  9.       {
  10.          _root.q = "MED";
  11.       }
  12.       else if(_root.q == "MED")
  13.       {
  14.          _root.q = "BEST";
  15.       }
  16.    }
  17.    else
  18.    {
  19.       _quality = "LOW";
  20.    }
  21. }
  22.